home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.20000217-20000824 / 000232_news@columbia.edu _Wed Apr 26 13:36:42 2000.msg < prev    next >
Internet Message Format  |  2020-01-01  |  4KB

  1. Return-Path: <news@columbia.edu>
  2. Received: from watsun.cc.columbia.edu (watsun.cc.columbia.edu [128.59.39.2])
  3.     by fozimane.cc.columbia.edu (8.9.3/8.9.3) with ESMTP id NAA20652
  4.     for <kermit.misc@cpunix.cc.columbia.edu>; Wed, 26 Apr 2000 13:36:42 -0400 (EDT)
  5. Received: from newsmaster.cc.columbia.edu (newsmaster.cc.columbia.edu [128.59.59.30])
  6.     by watsun.cc.columbia.edu (8.8.5/8.8.5) with ESMTP id NAA09534
  7.     for <kermit.misc@watsun.cc.columbia.edu>; Wed, 26 Apr 2000 13:36:42 -0400 (EDT)
  8. Received: (from news@localhost)
  9.     by newsmaster.cc.columbia.edu (8.9.3/8.9.3) id NAA05147
  10.     for kermit.misc@watsun.cc.columbia.edu; Wed, 26 Apr 2000 13:29:08 -0400 (EDT)
  11. X-Authentication-Warning: newsmaster.cc.columbia.edu: news set sender to <news> using -f
  12. From: fdc@columbia.edu (Frank da Cruz)
  13. Subject: Re: Parity incorrectly reported, and RTS/CTS problem on Solaris 7 for 
  14. Date: 26 Apr 2000 17:29:03 GMT
  15. Organization: Columbia University
  16. Message-ID: <8e790v$50o$1@newsmaster.cc.columbia.edu>
  17. To: kermit.misc@columbia.edu
  18.  
  19. In article <390722AF.622DDDA0@yk.rim.or.jp>,
  20. Ishikawa  <ishikawa@yk.rim.or.jp> wrote:
  21. : Frank da Cruz wrote:
  22. : ...
  23. : >So maybe the failures occur only in conjunction with 8-data-bits+parity,
  24. : >which is a new feature of C-Kermit 7.0.  Do you also get failures when
  25. : >you don't also set hardware parity?
  26. : I tried a few test without using hardware parity. Still no luck. CRTSCTS is
  27. : not set in stty output of kermit-controlled tty port.
  28. OK, good, now we know.
  29.  
  30. : Here is my take on why this problem was not noticed before
  31. : by the many kermit users on Sun boxes, and if my guess is correct,
  32. : the problem didn't harm many people at all.
  33. : - Hardware flow-control is only necessary when
  34. :   CPU/OS is rather slow in comparison to the serial line speed.
  35. :   Thanks to the deep hardware FIFO queue in serial controller, and
  36. :   ever faster CPU...
  37. :
  38. Yes, that's true in one direction, but what about the other?  When uploading
  39. a file through a modem, the modem connection rather than the CPU is usually
  40. the bottleneck, and so the modem will have to flow-control the computer.  If
  41. the computer does not cooperate, data is lost.  This means:
  42.  
  43.  a. SVR4-style hardware flow control works in Solaris in one direction but
  44.     not the other; or:
  45.  
  46.  b. Kermit's dynamic packet sizing got around the errors, so nobody noticed
  47.     them; or:
  48.  
  49.  c. Nobody has been using > 57600 bps serial speeds; or:
  50.  
  51.  d. Nobody is reporting problems.
  52.  
  53. About (b)...  Remember that Kermit is a pessimistic protocol.  It assumes
  54. the connection will be bad.  So it has all kinds of features to accommodate
  55. bad connections.  One of these is automatic adaptation of the packet length
  56. to the error rate.
  57.  
  58. :   If my reading of the messages is correct, solaris up to 2.3 did
  59. :   set RTS/CTS using ATT SysV semantics.
  60. :   The first broken version of kermit for Solaris 2.4 for x86
  61. :   didn't suffer much since the OS itself doesn't seem to have
  62. :   support for 115200 bps at all.
  63. :
  64. So you have determined that SVR4 hwfc works in Solaris 2.3 and earlier?
  65. I didn't see anything about this in yesterday's posting.
  66.  
  67. : PS: if we can return the failure code (-1) from
  68. : the att sysV semantics functions(s) to higher level
  69. : funtions, at least we can tell the user that something is woring by
  70. : printing some meaningful  messages.
  71. :
  72. Yes, I can take of this.  It will be in the next release.  But it won't
  73. affect Solaris > 2.3, since this code won't be used there any more, right?
  74.  
  75. - Frank